Remove the handling of TypeError inside gather. It is not thrown by int()
authoremellor@leeni.uk.xensource.com <emellor@leeni.uk.xensource.com>
Tue, 15 Nov 2005 17:47:39 +0000 (18:47 +0100)
committeremellor@leeni.uk.xensource.com <emellor@leeni.uk.xensource.com>
Tue, 15 Nov 2005 17:47:39 +0000 (18:47 +0100)
commit9773f5386e655c7c6fb42fffc1b948d8c1595342
tree059c47130405b5d9eff9c9cddbf39aaad3150608
parentadea335ead7373a325e431b4fa14c3f5af738a8c
Remove the handling of TypeError inside gather.  It is not thrown by int()
when given a non-convertible value, as claimed by the comment, as the exception
ValueError is thrown in that situation.  TypeError is only thrown on int(None),
which cannot actually take place in this code, because of the explicit check
for None.

Signed-off-by: Ewan Mellor <ewan@xensource.com>
tools/python/xen/xend/xenstore/xstransact.py